home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1995…tember: Reference Library / Dev.CD Sep 95 RL / Dev.CD Sep 95 RL.toast / mac / Technical Documentation / develop / develop Issue 20 code / Scripting the Finder / Finder Tricks / TricksDialog.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-10-04  |  484 b   |  28 lines  |  [TEXT/MMCC]

  1. #ifndef __TRICKSDIALOG__
  2. #define __TRICKSDIALOG__
  3.  
  4. #ifndef __WINDOWHANDLER__
  5. #include "WindowHandler.h"
  6. #endif
  7.  
  8. void OpenTricksDialog();
  9.  
  10. class TTricksDialogHandler : public TModelessDialogHandler
  11. {
  12. protected:
  13.  
  14. public:
  15.     void                ITypesDialogHandler(DialogPtr dialog);
  16.     
  17.     virtual void        SetupMenus();
  18.     virtual Boolean        ProcessMenuSelection(short commandID);
  19.     virtual void        DialogManagerEvent(EventRecord* event, short itemHit);
  20.     virtual void        CloseWindowByUser();
  21.  
  22. private:
  23. };
  24.  
  25.  
  26. #endif
  27.  
  28.